home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1997 / MacHack 1997.toast / Hacks / Hacks ’97 / Warrior’s Progress / source code / Source / Libraries / Menus / Standard Menus / AppleMenu.h < prev   
Encoding:
Text File  |  1997-06-28  |  418 b   |  30 lines  |  [TEXT/CWIE]

  1. // AppleMenu.h
  2.  
  3. #ifndef AppleMenu_h
  4. #define AppleMenu_h
  5.  
  6. #ifndef Menu_h
  7. #include "Menu.h"
  8. #endif
  9. #ifndef PlainMenuItem_h
  10. #include "PlainMenuItem.h"
  11. #endif
  12. #ifndef Boasting_h
  13. #include "Boasting.h"
  14. #endif
  15. #ifndef AppleMenuBody_h
  16. #include "AppleMenuBody.h"
  17. #endif
  18.  
  19. class AppleMenu: public Menu
  20.   {
  21.     private:
  22.         PlainMenuItem<Boasting>    boast;
  23.         AppleMenuBody accessories;
  24.     
  25.     public:
  26.         AppleMenu( ResourceID );
  27.   };
  28.  
  29. #endif
  30.